immodule: fix a GCC warning
authorCosimo Cecchi <cosimoc@gnome.org>
Tue, 19 Feb 2013 00:37:20 +0000 (19:37 -0500)
committerCosimo Cecchi <cosimoc@gnome.org>
Tue, 19 Feb 2013 00:38:21 +0000 (19:38 -0500)
gtk/gtkimmodule.c

index 5e35498a224191e39cce3969ce277fdc85476074..e6372f2edb6763b233b81164d2618e952e98033a 100644 (file)
@@ -650,7 +650,7 @@ lookup_immodule (gchar **immodules_list)
          gboolean found;
          gchar *context_id;
          found = g_hash_table_lookup_extended (contexts_hash, *immodules_list,
-                                               &context_id, NULL);
+                                               (gpointer *) &context_id, NULL);
          if (found)
            return context_id;
        }